From a8c3b67cec6873cb5e2a2ea1dfc0fc49fc50818b Mon Sep 17 00:00:00 2001 From: ehuss Date: Fri, 27 Jan 2017 08:59:48 -0800 Subject: [PATCH] Fix broken code block It seems like the Markdown parser requires a blank line before a code block (otherwise it treats it like an inline span). --- src/doc/manifest.md | 1 + 1 file changed, 1 insertion(+) diff --git a/src/doc/manifest.md b/src/doc/manifest.md index bf07ebe26..e5d266d84 100644 --- a/src/doc/manifest.md +++ b/src/doc/manifest.md @@ -461,6 +461,7 @@ You can run individual executable examples with the command `cargo run --example `. Specify `crate-type` to make an example be compiled as a library: + ```toml [[example]] name = "foo" -- 2.30.2